home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-24 | 1.3 KB | 57 lines | [TEXT/MPS ] |
- ;
- ; File: Packages.a
- ;
- ; Contains: Package Manager Interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Package: Universal Interfaces 2.2 in “MPW” on ETO #20
- ;
- ; Copyright: © 1984-1995 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Bugs?: If you find a problem with this file, use the Apple Bug Reporter
- ; stack. Include the file and version information (from above)
- ; in the problem description and send to:
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__PACKAGES__') = 'UNDEFINED' THEN
- __PACKAGES__ SET 1
-
-
- IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
- include 'Types.a'
- ENDIF
- ; include 'ConditionalMacros.a' ;
-
- listMgr EQU 0 ; list manager
- dskInit EQU 2 ; Disk Initializaton
- stdFile EQU 3 ; Standard File
- flPoint EQU 4 ; Floating-Point Arithmetic
- trFunc EQU 5 ; Transcendental Functions
- intUtil EQU 6 ; International Utilities
- bdConv EQU 7 ; Binary/Decimal Conversion
- editionMgr EQU 11 ; Edition Manager
-
- ;
- ; pascal void InitPack(short packID)
- ;
- IF ¬ GENERATINGCFM THEN
- _InitPack: OPWORD $A9E5
- ELSE
- IMPORT_CFM_FUNCTION InitPack
- ENDIF
-
- ;
- ; pascal void InitAllPacks(void)
- ;
- IF ¬ GENERATINGCFM THEN
- _InitAllPacks: OPWORD $A9E6
- ELSE
- IMPORT_CFM_FUNCTION InitAllPacks
- ENDIF
-
- ENDIF ; __PACKAGES__
-